home *** CD-ROM | disk | FTP | other *** search
- gStrFontSelectionDialog = '$$$/Dialogs/HTML2PDF/TextSettings/FontSelection/DialogTitle';
- gStrTextFont = '$$$/Dialogs/HTML2PDF/TextSettings/FontSelection/TextFont';
-
- gFontNamePopupWidth = max_char_width() * 15;
- gSampleWidth = gFontNamePopupWidth + (max_char_width() * 2);
- gSampleHeight = max_char_width() * 3;
-
- dialog( name: gStrFontSelectionDialog, target: 'btfn' )
- {
- view( align_children: align_left )
- {
- cluster( name: gStrTextFont )
- {
- view( align_children: align_left )
- {
- popup( item_id: 'txfn', width: gFontNamePopupWidth );
- user_item( item_id: 'txsm', width: gSampleWidth, height: gSampleHeight);
- }
- }
- ok_cancel();
- }
- }